home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / Ping.au3 < prev    next >
Text File  |  2006-06-17  |  228b  |  6 lines

  1. $var = Ping("www.AutoItScript.com",250)
  2. If $var Then; also possible:  If @error = 0 Then ...
  3.     Msgbox(0,"Status","Online, roundtrip was:" & $var)
  4. Else
  5.     Msgbox(0,"Status","An error occured with number: " & @error)
  6. EndIf